home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 April / CHIP CD (4 - 2007).iso / beeld / 3d / ArtOfIllusion24-Mac.dmg / Art of Illusion / ArtOfIllusion.jar / bsh / commands / error.bsh < prev    next >
Text File  |  2005-05-23  |  224b  |  11 lines

  1. /**
  2.     Print the item as an error.  
  3.     In the GUI console the text will show up in (something like) red, 
  4.     else it will be printed to standard error.
  5. */
  6.  
  7. void error( item ) {
  8.     this.interpreter.error( String.valueOf(item) );
  9. }
  10.  
  11.